[USER (data scientist)]: Cool, that's a good start! Now, I only want the ones that come with Windows 10 pre-installed. Can you help me with that? Please load the 'laptops_price.csv' DataFrame, filter it to include only laptops with a dedicated GPU and running Windows 10, and then display and save this subset as a DataFrame and a pickle file, respectively.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(laptops_windows_10)

# save data
pickle.dump(laptops_windows_10,open("./pred_result/laptops_windows_10.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure thing! Let's filter those laptops to only include the ones with Windows 10 pre-installed: 
